public enum ComponentsEnum extends java.lang.Enum<ComponentsEnum>
| Enum Constant and Description |
|---|
ACCEPTANCESTRATEGY |
BIDDINGSTRATEGY |
OMSTRATEGY |
OPPONENTMODEL |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
static ComponentsEnum |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ComponentsEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ComponentsEnum BIDDINGSTRATEGY
public static final ComponentsEnum ACCEPTANCESTRATEGY
public static final ComponentsEnum OPPONENTMODEL
public static final ComponentsEnum OMSTRATEGY
public static final ComponentsEnum UNKNOWN
public static ComponentsEnum[] values()
for (ComponentsEnum c : ComponentsEnum.values()) System.out.println(c);
public static ComponentsEnum valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namejava.lang.NullPointerException - if the argument is null